home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / network / lattice / portlib.lzh / PORTLIB / CHROOT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-20  |  86 b   |  9 lines

  1. #include <unistd.h>
  2.  
  3. int
  4. chroot (path)
  5.     char *path;
  6. {
  7.     return chdir (path);
  8. }
  9.